Where are words that users "Add To Dictionary" Stored?
Good Question!
By default - all words are stored in the users browser cache - and no-one else is affected.
To disable the spellcheckers "add to dictionary" globally
- Edit javascriptspellcheck/include.js
- Find: this.AddWordsToDictionary="USER";
- Change to this.AddWordsToDictionary="NONE";
To allow all users to add to a common server dictionary
- Edit javascriptspellcheck/include.js
- Find: this.AddWordsToDictionary="USER";
- Change to this.AddWordsToDictionary="SERVER";
Now you need to set some server permissions:
- First check that your system / user has write permissions to
javascriptspellcheck/dictionaries/custom.txt
For PHP users
- Edit javascriptspellcheck/core/index.php
- Set : $SaveToCentralDictionary = true; on line 10
For ASP users users
- Edit javascriptspellcheck/core/settings/default-settings.asp
SaveToCentralDictionary = true on line 2
For ASP.Net users
<appSettings>……
<add key="aspnetspell_usecentraldictionary" value="true" />